home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HPAVC
/
HPAVC CD-ROM.iso
/
GENCSRC.ZIP
/
INTIN.C
< prev
next >
Wrap
C/C++ Source or Header
|
1987-11-21
|
366b
|
17 lines
/* Chapter 9 - Program 4 */
#include "stdio.h"
main()
{
int valin;
printf("Input a number from 0 to 32767, stop with 100.\n");
do {
scanf("%d",&valin); /* read a single integer value in */
printf("The value is %d\n",valin);
} while (valin != 100);
printf("End of program\n");
}